/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, sans-serif;
background:#f6f4f1;
color:#333;
line-height:1.6;
}


/* HERO */

.hero{
height:70vh;

background:
linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.7)),
url("images/holz.jpg");

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;

text-align:center;
color:white;
}

.hero h1{
font-size:50px;
}

.hero p{
margin-top:10px;
font-size:18px;
}


/* SECTION */

.section{
max-width:1100px;
margin:80px auto;
padding:0 20px;
text-align:center;
}

.section h2{
margin-bottom:40px;
color:#3b2418;
}


/* CARDS */

.cards{
display:flex;
gap:30px;
flex-wrap:wrap;
}

.card{
background:white;
padding:30px;

border-radius:12px;

box-shadow:0 15px 35px rgba(0,0,0,0.1);

flex:1;
min-width:250px;

transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
}

.icon{
font-size:30px;
margin-bottom:10px;
}


/* SPLIT */

.split{
max-width:1100px;
margin:80px auto;

display:flex;
align-items:center;
gap:60px;

padding:0 20px;
}

.split-text{
flex:1.2;
}

.split-image{
flex:1;
}

.split-image img{
width:100%;
height:350px;

object-fit:cover;

border-radius:12px;

box-shadow:0 20px 40px rgba(0,0,0,0.2);
}


/* GALLERY */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery-item{
aspect-ratio:1/1;
overflow:hidden;
border-radius:12px;
}

.gallery-item img{
width:100%;
height:100%;

object-fit:cover;

transition:0.4s;
}

.gallery-item img:hover{
transform:scale(1.05);
}


/* CTA */

.cta{
background:linear-gradient(135deg,#4a2e1f,#7a4a2c);
color:white;

text-align:center;

padding:80px 20px;
}

.cta h2{
margin-bottom:10px;
}

.btn{
display:inline-block;
margin-top:20px;

padding:12px 25px;

background:#c08a5a;
color:white;

border-radius:6px;

transition:0.3s;
}

.btn:hover{
transform:scale(1.05);
}


/* FOOTER */

footer{
background:#2b2b2b;
color:white;

text-align:center;

padding:30px;
}

footer a{
display:block;
margin-top:10px;
color:#c08a5a;
}


/* RESPONSIVE */

@media(max-width:768px){

.split{
flex-direction:column;
}

.hero h1{
font-size:32px;
}

}